From: Jim Blandy Date: Tue, 18 May 1993 22:44:27 +0000 (+0000) Subject: * lisp.h (malloc, realloc): Declare these to return void *, to X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96188 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=339747e43865f9e5b610cc1e667d3c44fbd24b1a;p=emacs.git * lisp.h (malloc, realloc): Declare these to return void *, to avoid conflicts with ANSI header files. --- diff --git a/src/lisp.h b/src/lisp.h index a13db81a776..1fdcae2e628 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1292,7 +1292,8 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */ extern void debugger (); -extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd (); +extern void *malloc (), *realloc (); +extern char *getenv (), *ctime (), *getwd (); extern long *xmalloc (), *xrealloc (); extern void xfree ();